home *** CD-ROM | disk | FTP | other *** search
/ MacAddict 104 / MacAddict_104_2005-04.iso / Software / Internet & Communication / WordPress 1.2.2 freeware.dmg / wordpress / wp-includes / locale.php < prev    next >
Encoding:
PHP Script  |  2004-05-17  |  1.9 KB  |  59 lines

  1. <?php
  2. // Date and Time
  3.  
  4. // The Weekdays
  5. $weekday[0] = __('Sunday');
  6. $weekday[1] = __('Monday');
  7. $weekday[2] = __('Tuesday');
  8. $weekday[3] = __('Wednesday');
  9. $weekday[4] = __('Thursday');
  10. $weekday[5] = __('Friday');
  11. $weekday[6] = __('Saturday');
  12.  
  13. // The first letter of each day.  Note that marking single characters for
  14. // translation is useless, but here it is.
  15. $weekday_initial[__('Sunday')]    = __('S');
  16. $weekday_initial[__('Monday')]    = __('M');
  17. $weekday_initial[__('Tuesday')]   = __('T');
  18. $weekday_initial[__('Wednesday')] = __('W');
  19. $weekday_initial[__('Thursday')]  = __('T');
  20. $weekday_initial[__('Friday')]    = __('F');
  21. $weekday_initial[__('Saturday')]  = __('S');
  22.  
  23. // Abbreviations for each day.
  24. $weekday_abbrev[__('Sunday')]    = __('Sun');
  25. $weekday_abbrev[__('Monday')]    = __('Mon');
  26. $weekday_abbrev[__('Tuesday')]   = __('Tue');
  27. $weekday_abbrev[__('Wednesday')] = __('Wed');
  28. $weekday_abbrev[__('Thursday')]  = __('Thu');
  29. $weekday_abbrev[__('Friday')]    = __('Fri');
  30. $weekday_abbrev[__('Saturday')]  = __('Sat');
  31.  
  32. // The Months
  33. $month['01'] = __('January');
  34. $month['02'] = __('February');
  35. $month['03'] = __('March');
  36. $month['04'] = __('April');
  37. $month['05'] = __('May');
  38. $month['06'] = __('June');
  39. $month['07'] = __('July');
  40. $month['08'] = __('August');
  41. $month['09'] = __('September');
  42. $month['10'] = __('October');
  43. $month['11'] = __('November');
  44. $month['12'] = __('December');
  45.  
  46. // Abbreviations for each month.
  47. $month_abbrev[__('January')] = __('Jan');
  48. $month_abbrev[__('February')] = __('Feb');
  49. $month_abbrev[__('March')] = __('Mar');
  50. $month_abbrev[__('April')] = __('Apr');
  51. $month_abbrev[__('May')] = __('May');
  52. $month_abbrev[__('June')] = __('Jun');
  53. $month_abbrev[__('July')] = __('Jul');
  54. $month_abbrev[__('August')] = __('Aug');
  55. $month_abbrev[__('September')] = __('Sep');
  56. $month_abbrev[__('October')] = __('Oct');
  57. $month_abbrev[__('November')] = __('Nov');
  58. $month_abbrev[__('December')] = __('Dec');
  59. ?>